@charset "utf-8";

* { box-sizing: border-box; }

/* body {
  font-family: "Helvetica Neue", sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background: #FAF3E0;
  color: #3B3B3B;
} */

#chiken_back {
  background: url('chicken-header.jpg') no-repeat center center/cover;
  height: 100vh;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#chiken_back::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5); /* 黒の半透明のオーバーレイ */
	z-index: 1;
  }
  
  #chiken_back h1 {
	font-size: 2.5em;
	margin: 0;
	text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
	z-index: 10; /* h1をオーバーレイより前に表示 */
  }
  
  #chiken_back p {
	font-size: 1.2em;
  color: #fff;
	margin: 10px 0;
	z-index: 10;
  } 
.contactswitch{
	z-index: 10;
} 

.chiken_menu {
  background: #F7CB4D;
  padding: 10px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav a {
  margin: 0 15px;
  color: #333;
  text-decoration: none;
  font-weight: bold;
}

section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

h2 {
  color: #C0392B;
  font-weight: bold;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.feature {
  flex: 1;
  min-width: 250px;
  background: #fff8e7;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.cta {
  background: #C0392B;
  color: white;
  text-align: center;
  padding: 30px 20px;
  margin: 40px 0;
  border-radius: 10px;
}

.cta a {
  background: #fff8e7;
  color: #C0392B;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}



/*------------------------------
btn
------------------------------*/
.redbtn {
  display: block;
  font-size: clamp(0.85rem, 0.3rem + 0.7vw, 1rem);
  line-height: 1;
  transition: all .3s;
  margin: 1em auto 1em auto ;  
  background: #bb2210;
  border: 1px solid #fff;
  color: #fff;
  padding: .1em 20px;
  width: 190px;
  text-align: center;
  border-radius: 20px;
  animation: poyopoyo 2s ease-out infinite;
  opacity: 1;
}

.redbtn p{
  color: #fff;
}

a.redbtn:hover,
a.redbtn:active,
a.redbtn:focus {
  background: #333;
  color: #fff;
}

.button a {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: auto;
  max-width: 250px;
  padding: 7px 25px;
  text-decoration: none;
  color: #333;
  line-height: 1.8;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  background: #F7CB4D;
  border-radius: 9999px;
  border-bottom: solid 5px #999;
  margin: 1em auto;
}
.button a:hover {
  border-bottom: solid 2px #999;
  transform: translateY(3px);
}
